void CDialogFilecopy::OnRename() 
{
	// TODO: Add your control notification handler code here
	UpdateData();
	//ж·ǷϷ
	if (m_strSource.IsEmpty())
	{
		MessageBox("Please input Source Path!");
		return;
	}
	if (m_strTarget.IsEmpty())
	{
		MessageBox("Please input Target Path!");
		return;
	}
	CFile::Rename(m_strSource, m_strTarget);
}
